home *** CD-ROM | disk | FTP | other *** search
- /*
- * exception.h
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __exception_h
- #define __exception_h
-
- typedef struct _exception {
- u4 start_pc;
- u4 end_pc;
- u4 handler_pc;
- char* catch_type;
- } exception;
-
- #endif
-